home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / gfx / show / gs503_data.lha / Ghostscript / data / gs_init.ps < prev    next >
Text File  |  1997-08-14  |  46KB  |  1,459 lines

  1. %    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2. % This file is part of Aladdin Ghostscript.
  3. % Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. % or distributor accepts any responsibility for the consequences of using it,
  5. % or for whether it serves any particular purpose or works at all, unless he
  6. % or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. % License (the "License") for full details.
  8. % Every copy of Aladdin Ghostscript must include a copy of the License,
  9. % normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. % the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. % under certain conditions described in the License.  Among other things, the
  12. % License requires that the copyright notice and this notice be preserved on
  13. % all copies.
  14.  
  15. % Initialization file for the interpreter.
  16. % When this is run, systemdict is still writable.
  17.  
  18. % Comment lines of the form
  19. %    %% Replace <n> <file(s)>
  20. % indicate places where the next <n> lines should be replaced by
  21. % the contents of <file(s)>, when creating a single merged init file.
  22.  
  23. % The interpreter can call out to PostScript code.  All procedures
  24. % called in this way, and no other procedures defined in these
  25. % initialization files, have names that begin with %, e.g.,
  26. % (%Type1BuildChar) cvn.
  27.  
  28. % Check the interpreter revision.  NOTE: the interpreter code requires
  29. % that the first non-comment token in this file be an integer.
  30. 503
  31. dup revision ne
  32.  { (gs: Interpreter revision \() print revision 10 string cvs print
  33.    (\) does not match gs_init.ps revision \() print 10 string cvs print
  34.    (\).\n) print flush null 1 .quit
  35.  }
  36. if pop
  37.  
  38. % Acquire userdict, and set its length if necessary.
  39. /userdict where
  40.  { pop userdict maxlength 0 eq }
  41.  { true }
  42. ifelse
  43.  {        % userdict wasn't already set up by iinit.c.
  44.    /userdict
  45.    currentdict dup 200 .setmaxlength        % userdict
  46.    systemdict begin def        % can't use 'put', userdict is local
  47.  }
  48.  { systemdict begin
  49.  }
  50. ifelse
  51.  
  52. % Define dummy local/global operators if needed.
  53. systemdict /.setglobal known
  54.  { true .setglobal
  55.  }
  56.  { /.setglobal { pop } bind def
  57.    /.currentglobal { false } bind def
  58.    /.gcheck { pop false } bind def
  59.  }
  60. ifelse
  61.  
  62. % Define .languagelevel if needed.
  63. systemdict /.languagelevel known not { /.languagelevel 1 def } if
  64.  
  65. % Optionally choose a default paper size other than U.S. letter.
  66. % (a4) /PAPERSIZE where { pop pop } { /PAPERSIZE exch def } ifelse
  67.  
  68. % Turn on array packing for the rest of initialization.
  69. true setpacking
  70.  
  71. % Define the old MS-DOS EOF character as a no-op.
  72. % This is a hack to get around the absurd habit of MS-DOS editors
  73. % of adding an EOF character at the end of the file.
  74. <1a> cvn { } def
  75.  
  76. % Acquire the debugging flags.
  77. currentdict /DEBUG known   /DEBUG exch def
  78.   /VMDEBUG
  79.     DEBUG {{print mark
  80.             systemdict /level2dict known
  81.          { .currentglobal dup false .setglobal vmstatus
  82.            true .setglobal vmstatus 3 -1 roll pop
  83.            6 -2 roll pop .setglobal
  84.          }
  85.          { vmstatus 3 -1 roll pop
  86.          }
  87.         ifelse usertime 16#fffff and counttomark
  88.           { ( ) print (           ) cvs print }
  89.         repeat pop
  90.         ( ) print systemdict length (    ) cvs print
  91.         ( ) print countdictstack (  ) cvs print
  92.         ( <) print count (  ) cvs print (>\n) print flush
  93.       }}
  94.       {{pop
  95.       }}
  96.      ifelse
  97.   def
  98.  
  99. currentdict /BATCH known   /BATCH exch def
  100. currentdict /DELAYBIND known   /DELAYBIND exch def
  101. currentdict /DISKFONTS known   /DISKFONTS exch def
  102. currentdict /ESTACKPRINT known   /ESTACKPRINT exch def
  103. currentdict /FAKEFONTS known   /FAKEFONTS exch def
  104. currentdict /FIXEDMEDIA known   /FIXEDMEDIA exch def
  105. currentdict /FIXEDRESOLUTION known   /FIXEDRESOLUTION exch def
  106. currentdict /LOCALFONTS known   /LOCALFONTS exch def
  107. currentdict /NOBIND known   /NOBIND exch def
  108. /.bind /bind load def
  109. NOBIND { /bind { } def } if
  110. currentdict /NOCACHE known   /NOCACHE exch def
  111. currentdict /NOCIE known   /NOCIE exch def
  112. currentdict /NODISPLAY known   not /DISPLAYING exch def
  113. currentdict /NOFONTMAP known   /NOFONTMAP exch def
  114. currentdict /NOFONTPATH known   /NOFONTPATH exch def
  115. currentdict /NOGC known   /NOGC exch def
  116. currentdict /NOPAUSE known   /NOPAUSE exch def
  117. currentdict /NOPLATFONTS known   /NOPLATFONTS exch def
  118. currentdict /NOPROMPT known   /NOPROMPT exch def
  119. % The default value of ORIENT1 is true, not false.
  120. currentdict /ORIENT1 known not { /ORIENT1 true def } if
  121. currentdict /OSTACKPRINT known   /OSTACKPRINT exch def
  122. currentdict /OUTPUTFILE known    % obsolete
  123.  { /OutputFile /OUTPUTFILE load def
  124.    currentdict /OUTPUTFILE .undef
  125.  } if
  126. currentdict /QUIET known   /QUIET exch def
  127. currentdict /SAFER known   /SAFER exch def
  128. currentdict /SHORTERRORS known   /SHORTERRORS exch def
  129. currentdict /WRITESYSTEMDICT known   /WRITESYSTEMDICT exch def
  130.  
  131. % Acquire environment variables.
  132. currentdict /DEVICE known not
  133.  { (GS_DEVICE) getenv { /DEVICE exch def } if } if
  134.  
  135. (START) VMDEBUG
  136.  
  137. % Open the standard files, so they will be open at the outermost save level.
  138. (%stdin) (r) file pop
  139. (%stdout) (w) file pop
  140. (%stderr) (w) file pop
  141.  
  142. % Define a procedure for skipping over an unneeded section of code.
  143. % This avoids allocating space for the skipped procedures.
  144. % We can't use readline, because that imposes a line length limit.
  145. /.skipeof    % <string> .skipeof -
  146.  { currentfile exch 1 exch .subfiledecode flushfile
  147.  } bind def
  148.  
  149. % If we're delaying binding, remember everything that needs to be bound later.
  150. DELAYBIND NOBIND not and
  151.  { .currentglobal false .setglobal
  152.    userdict /.delaybind 1500 array put
  153.    .setglobal
  154.    userdict /.delaycount 0 put
  155.     % When we've done the delayed bind, we want to stop saving.
  156.     % Detect this by the disappearance of .delaybind.
  157.    /bind
  158.     { userdict /.delaybind .knownget
  159.        { .delaycount 2 index put
  160.          userdict /.delaycount .delaycount 1 add put
  161.        }
  162.        { .bind
  163.        }
  164.       ifelse
  165.     } bind def
  166.  } if
  167.  
  168. % Define procedures to assist users who don't read the documentation.
  169. userdict begin
  170. /help
  171.  { (Enter PostScript commands.  '(filename) run' runs a file, 'quit' exits.\n)
  172.    print flush
  173.  } bind def
  174. /? /help load def
  175. end
  176.  
  177. % Define =string, which is used by some PostScript programs even though
  178. % it isn't documented anywhere.
  179. % Put it in userdict so that each context can have its own copy.
  180. userdict /=string 256 string put
  181.  
  182. % Print the greeting.
  183.  
  184. /printgreeting
  185.  { mark
  186.    product (Ghostscript) search
  187.     { pop pop pop
  188.       (This software comes with NO WARRANTY: see the file PUBLIC for details.\n)
  189.     }
  190.     { pop
  191.     }
  192.    ifelse
  193.    (\n) copyright
  194.    (\)\n) revisiondate 100 mod (-)
  195.    revisiondate 100 idiv 100 mod (-)
  196.    revisiondate 10000 idiv ( \()
  197.    revision 10 mod
  198.    revision 100 mod dup 0 ne { 10 idiv } { pop } ifelse (.)
  199.    revision 100 idiv ( )
  200.    product
  201.    counttomark
  202.     { (%stdout) (w) file exch false .writecvp
  203.     } repeat pop
  204.  } bind def
  205.  
  206. QUIET not { printgreeting flush } if
  207.  
  208. % Define a special version of def for making operator procedures.
  209. /odef        % <name> <proc> odef -
  210.  { 1 index exch .makeoperator def
  211.  } .bind def
  212.  
  213. %**************** BACKWARD COMPATIBILITY
  214. /getdeviceprops
  215.  { null .getdeviceparams
  216.  } bind odef
  217. /.putdeviceprops
  218.  { null true counttomark 1 add 3 roll .putdeviceparams
  219.    dup type /booleantype ne
  220.     { dup mark eq { /unknown /rangecheck } if
  221.       counttomark 4 add 1 roll cleartomark pop pop pop
  222.       /.putdeviceprops load exch signalerror
  223.     }
  224.    if
  225.  } bind odef
  226. /max { .max } bind def
  227. /min { .min } bind def
  228. /.currentfilladjust { .currentfilladjust2 pop } bind odef
  229. /.setfilladjust { dup .setfilladjust2 } bind odef
  230. /.writecvs { false .writecvp } bind odef
  231.  
  232. % Define predefined procedures substituting for operators,
  233. % in alphabetical order.
  234.  
  235. userdict /#copies 1 put
  236. % Adobe implementations don't accept /[ or /], so we don't either.
  237. ([) cvn
  238.     /mark load def
  239. (]) cvn
  240.     {counttomark array astore exch pop} odef
  241. /abs    {dup 0 lt {neg} if} odef
  242. % .beginpage is redefined if setpagedevice is present.
  243. /.beginpage { } odef
  244. /copypage
  245.     { 1 .endpage
  246.        { .currentnumcopies false .outputpage
  247.          (>>copypage, press <return> to continue<<\n) .confirm
  248.        }
  249.       if .beginpage
  250.     } odef
  251. /countexecstack { false .countexecstack } odef
  252. % .currentnumcopies is redefined in Level 2.
  253. /.currentnumcopies { #copies } odef
  254. /setcolorscreen where { pop        % not in all Level 1 configurations
  255.    /currentcolorscreen
  256.     { .currenthalftone
  257.        { { 60 exch 0 exch 3 copy 6 copy }    % halftone - not possible
  258.          { 3 copy 6 copy }            % screen
  259.          { }                % colorscreen
  260.        }
  261.       exch get exec
  262.     } odef
  263. } if
  264. /currentscreen
  265.     { .currenthalftone
  266.        { { 60 exch 0 exch }            % halftone - not possible
  267.          { }                % screen
  268.          { 12 3 roll 9 { pop } repeat }    % colorscreen
  269.        }
  270.       exch get exec
  271.     } odef
  272. /.echo /echo load def
  273. userdict /.echo.mode true put
  274. /echo    {dup /.echo.mode exch store .echo} odef
  275. /eexec
  276.     { 55665 //filterdict /eexecDecode get exec
  277.       cvx //systemdict begin stopped
  278.         % Only pop systemdict if it is still the top element,
  279.         % because this is apparently what Adobe interpreters do.
  280.       currentdict //systemdict eq { end } if
  281.       { stop } if
  282.     } odef
  283. % .endpage is redefined if setpagedevice is present.
  284. /.endpage { 2 ne } odef
  285. % erasepage mustn't use gsave/grestore, because we call it before
  286. % the graphics state stack has been fully initialized.
  287. /erasepage
  288.     { /currentcolor where
  289.        { pop currentcolor currentcolorspace { setcolorspace setcolor } }
  290.        { /currentcmykcolor where
  291.           { pop currentcmykcolor { setcmykcolor } }
  292.           { currentrgbcolor { setrgbcolor } }
  293.          ifelse
  294.        }
  295.       ifelse 1 setgray .fillpage exec
  296.     } odef
  297. /execstack { false .execstack } odef
  298. /executive
  299.     { { prompt
  300.          { (%statementedit) (r) file } stopped
  301.          { pop pop $error /errorname get /undefinedfilename eq
  302.         { .clearerror exit } if        % EOF
  303.            handleerror null        % ioerror??
  304.          }
  305.         if
  306.         cvx { .runexec } execute
  307.       } loop
  308.     } odef
  309. /filter
  310.     { //filterdict 1 index .knownget
  311.        { exch pop exec }
  312.        { /filter load /undefined signalerror }
  313.       ifelse
  314.     } odef
  315. /handleerror
  316.     { //systemdict /errordict get /handleerror get exec } bind def
  317. /identmatrix [1.0 0.0 0.0 1.0 0.0 0.0] readonly def
  318. /identmatrix
  319.     { //identmatrix exch copy } odef
  320. /languagelevel 1 def        % gs_lev2.ps may change this
  321. /makeimagedevice { false makewordimagedevice } odef
  322. /matrix    { 6 array identmatrix } odef
  323. /pathbbox
  324.     { false { .pathbbox } stopped
  325.        { pop /pathbbox load $error /errorname get signalerror } if
  326.     } odef
  327. /prompt    { flush flushpage
  328.       (GS) print
  329.       count 0 ne { (<) print count =only } if
  330.       (>) print flush
  331.     } bind def
  332. /pstack    { 0 1 count 3 sub { index == } for } bind def
  333. /putdeviceprops
  334.     { .putdeviceprops { erasepage } if } odef
  335. /quit    { /quit load 0 .quit } odef
  336. /run    { dup type /filetype ne { (r) file } if
  337.         % We must close the file when execution terminates,
  338.         % regardless of the state of the stack,
  339.         % and then propagate an error, if any.
  340.       cvx .runexec
  341.     } odef
  342. % Execute a file.
  343. % Level 2 uses 2 .stop to clear the e-stack for a successful startjob:
  344. % we detect that here, since we need to handle this even if we start out
  345. % without job control in effect.
  346. %
  347. % What we push on the e-stack is the following to be executed in this order:
  348. %    <lit-file|fileproc> .runexec1 <lit-file|fileproc> .runexec2
  349. /.runexec1 {        % <file|fileproc> .runexec1 -
  350.   dup type /filetype ne { cvx exec } if
  351.   cvx null 2 .stopped
  352.     % If we got back here from a startjob, just keep going.
  353.     % startjob replaces the null on the o-stack with a procedure
  354.     % to be executed when we get back here.
  355.   dup null ne { exec true } { pop false } ifelse
  356. } bind def
  357. /.runexec2 {        % <continue> <file|fileproc> .runexec2 -
  358.   exch {
  359.     .runexec
  360.   } {
  361.     dup type /filetype ne { cvx exec } if
  362.     closefile
  363.   } ifelse
  364. } bind def
  365. /.runexec {        % <file|fileproc> .runexec -
  366.   cvlit /.runexec1 cvx 1 index /.runexec2 cvx 4 .execn
  367. } bind def
  368. % The following is only for compatibility with Adobe interpreters.
  369. /setdash {
  370.     1 index length 11 gt { /setdash load /limitcheck signalerror } if
  371.     //setdash
  372. } odef
  373. /setdevice
  374.     { .setdevice { erasepage } if } odef
  375. /setlinecap {
  376.     dup 2 gt { /setlinecap load /rangecheck signalerror } if
  377.     .setlinecap
  378. } odef
  379. /setlinejoin {
  380.     dup 2 gt { /setlinejoin load /rangecheck signalerror } if
  381.     .setlinejoin
  382. } odef
  383. /showpage
  384.     { 0 .endpage .doneshowpage
  385.        { .currentnumcopies true .outputpage
  386.          (>>showpage, press <return> to continue<<\n) .confirm
  387.          erasepage
  388.        }
  389.       if initgraphics .beginpage
  390.     } odef
  391. % Code output by Adobe Illustrator relies on the fact that
  392. % `stack' is a procedure, not an operator!!!
  393. /stack    { 0 1 count 3 sub { index = } for } bind def
  394. /start    { BATCH { null 0 .quit } { executive } ifelse } def
  395. % Internal uses of stopped that aren't going to do a stop if an error occurs
  396. % should use .internalstopped to avoid setting newerror et al.
  397. /.internalstopped { null 1 .stopped null ne } bind def
  398. /store    {    % Don't alter operands before completing.
  399.       1 index where { 2 index 2 index put pop pop } { def } ifelse
  400.     } odef
  401. % When running in Level 1 mode, this interpreter is supposed to be
  402. % compatible with PostScript "version" 54.0 (I think).
  403. /version (54.0) def
  404.  
  405. % internaldict is defined in systemdict, but is allocated in local VM.
  406. systemdict /internaldict .knownget not { 0 } if type /operatortype ne
  407.  { .currentglobal false .setglobal
  408.    //systemdict /internaldict known not { /internaldict 5 dict def } if
  409.    /internaldict
  410.     [ /dup load 1183615869 /eq load
  411.        [ /pop load internaldict ] cvx
  412.        [ /internaldict /cvx load /invalidaccess /signalerror cvx ] cvx
  413.       /ifelse load
  414.     ] cvx bind odef
  415.    .setglobal
  416.  } if
  417.  
  418. % Define some additional built-in procedures (beyond the ones defined by
  419. % the PostScript Language Reference Manual).
  420. % Warning: these are not guaranteed to stay the same from one release
  421. % to the next!
  422. /concatstrings
  423.     { exch dup length 2 index length add string    % str2 str1 new
  424.       dup dup 4 2 roll copy        % str2 new new new1
  425.       length 4 -1 roll putinterval
  426.     } bind def
  427. /copyarray
  428.     { dup length array copy } bind def
  429. % Copy a dictionary per the Level 2 spec even in Level 1.
  430. /.copydict        % <fromdict> <todict> .copydict <todict>
  431.     { dup 3 -1 roll { put dup } forall pop } bind def
  432. /copystring
  433.     { dup length string copy } bind def
  434. /finddevice
  435.     { //systemdict /devicedict get exch get
  436.       dup 1 get null eq
  437.        {        % This is the first request for this type of device.
  438.             % Create a default instance now.
  439.             % Stack: [proto null]
  440.          .currentglobal true .setglobal exch
  441.          dup dup 0 get copydevice 1 exch put
  442.          exch .setglobal
  443.        }
  444.       if 1 get
  445.     } bind def
  446. /.growdictlength    % get size for growing a dictionary
  447.     { length 3 mul 2 idiv 1 add
  448.     } bind def
  449. /.growdict        % grow a dictionary
  450.     { dup .growdictlength .setmaxlength
  451.     } bind def
  452. /.growput        % put, grow the dictionary if needed
  453.     { 2 index length 3 index maxlength eq
  454.        { 3 copy pop known not { 2 index .growdict } if
  455.        } if
  456.       put
  457.     } bind def
  458. /.packtomark
  459.     { counttomark packedarray exch pop } bind def
  460. /ppstack
  461.     { 0 1 count 3 sub { index === } for } bind def
  462. /runlibfile
  463.     {        % We don't want to bind 'run' into this procedure,
  464.             % since run may get redefined.
  465.       findlibfile
  466.        { exch pop //systemdict /run get exec }
  467.        { /undefinedfilename signalerror }
  468.       ifelse
  469.     } bind def
  470. /selectdevice
  471.     { finddevice setdevice .setdefaultscreen } bind def
  472. /signalerror        % <object> <errorname> signalerror -
  473.     { //systemdict /errordict get exch get exec } bind def
  474.  
  475. % Define the =[only] procedures.  Also define =print,
  476. % which is used by some PostScript programs even though
  477. % it isn't documented anywhere.
  478. /write=only {
  479.     .writecvs
  480. } bind def
  481. /write= {
  482.     1 index exch write=only (\n) writestring
  483. } bind def
  484. /=only    { (%stdout) (w) file exch write=only } bind def
  485. /=    { =only (\n) print } bind def
  486. /=print    /=only load def
  487. % Temporarily define == as = for the sake of runlibfile0.
  488. /== /= load def
  489.  
  490. % Define procedures for getting and setting the current device resolution.
  491.  
  492. /gsgetdeviceprop    % <device> <propname> gsgetdeviceprop <value>
  493.  { 2 copy mark exch null .dicttomark .getdeviceparams
  494.    dup mark eq        % if true, not found
  495.     { pop dup /undefined signalerror }
  496.     { 5 1 roll pop pop pop pop }
  497.    ifelse
  498.  } bind def
  499. /gscurrentresolution    % - gscurrentresolution <[xres yres]>
  500.  { currentdevice /HWResolution gsgetdeviceprop
  501.  } bind def
  502. /gssetresolution    % <[xres yres]> gssetresolution -
  503.  { 2 array astore mark exch /HWResolution exch
  504.    currentdevice copydevice putdeviceprops setdevice
  505.  } bind def
  506.  
  507. % Define auxiliary procedures needed for the above.
  508. /shellarguments        % -> shell_arguments true (or) false
  509.     { /ARGUMENTS where
  510.        { /ARGUMENTS get dup type /arraytype eq
  511.           { aload pop /ARGUMENTS null store true }
  512.           { pop false }
  513.          ifelse }
  514.        { false } ifelse
  515.     } bind def
  516. /.confirm
  517.     { DISPLAYING NOPAUSE not and
  518.        {    % Print a message (unless NOPROMPT is true)
  519.         % and wait for the user to type something.
  520.         % If the user just types a newline, flush it.
  521.          NOPROMPT { pop } { print flush } ifelse
  522.          .echo.mode false echo
  523.          (%stdin) (r) file dup read
  524.           { dup (\n) 0 get eq { pop pop } { unread } ifelse }
  525.           { pop }
  526.          ifelse echo
  527.        }
  528.        { pop
  529.        }
  530.       ifelse
  531.     } bind def
  532.  
  533. % Define the procedure used by .runfile, .runstdin and .runstring
  534. % for executing user input.
  535. % This is called with a procedure or executable file on the operand stack.
  536. /.execute {        % <obj> .execute <stopped>
  537.   stopped $error /newerror get and
  538.    { handleerror flush true } { false } ifelse
  539. } bind def
  540. /execute {        % <obj> execute -
  541.   .execute pop
  542. } odef
  543. % Define an execute analogue of runlibfile0.
  544. /execute0 {        % <obj> execute0 -
  545.   .execute { /execute0 cvx 1 .quit } if
  546. } bind def
  547. % Define the procedure that the C code uses for running files
  548. % named on the command line.
  549. /.runfile {
  550.   { runlibfile } execute
  551. } def
  552. % Define the procedure that the C code uses for running piped input.
  553. % We don't use the obvious { (%stdin) run }, because we want the file to be
  554. % reopened if a startjob does a restore.
  555. /.runstdin {
  556.   { { (%stdin) (r) file cvx } .runexec } execute0
  557. } bind def
  558. % Define the procedure that the C code uses for running commands
  559. % given on the command line with -c.  We turn the string into a file so that
  560. % .runexec can do the right thing with a startjob.
  561. /.runstring {
  562.   .currentglobal exch true .setglobal
  563.   0 () .subfiledecode
  564.   exch .setglobal cvx { .runexec } execute
  565. } bind def
  566. % Define the procedure that the C code uses to set up for executing
  567. % a string that may be received in pieces.
  568. /.runstringbegin {
  569.   .currentglobal true .setglobal
  570.   { .needinput } bind 0 () .subfiledecode
  571.   exch .setglobal cvx .runexec
  572. } bind def
  573.  
  574. % Define a special version of runlibfile that aborts on errors.
  575. /runlibfile0
  576.     { cvlit dup /.currentfilename exch def
  577.        { findlibfile not { stop } if }
  578.       stopped
  579.        { (Can't find \(or open\) initialization file ) print
  580.          .currentfilename == flush /runlibfile0 cvx 1 .quit
  581.        } if
  582.       exch pop cvx stopped
  583.        { (While reading ) print .currentfilename print (:\n) print flush
  584.          handleerror /runlibfile0 1 .quit
  585.        } if
  586.     } bind def
  587. % Temporarily substitute it for the real runlibfile.
  588. /.runlibfile /runlibfile load def
  589. /runlibfile /runlibfile0 load def
  590.  
  591. % Create the error handling machinery.
  592. % Define the standard error handlers.
  593. % The interpreter has created the ErrorNames array.
  594. /.unstoppederrorhandler    % <command> <errorname> .unstoppederrorhandler -
  595.  {    % This is the handler that gets used for recursive errors,
  596.     % or errors outside the scope of a 'stopped'.
  597.    2 copy SHORTERRORS
  598.     { (%%[ Error: ) print =only flush
  599.       (; OffendingCommand: ) print =only ( ]%%\n) print
  600.     }
  601.     { (Unrecoverable error: ) print =only flush
  602.       ( in ) print = flush
  603.       count 2 gt
  604.        { (Operand stack:\n  ) print
  605.      2 1 count 3 sub { (  ) print index =only flush } for
  606.      (\n) print flush
  607.        } if
  608.     }
  609.    ifelse
  610.    -1 0 1 //ErrorNames length 1 sub
  611.     { dup //ErrorNames exch get 3 index eq
  612.        { not exch pop exit } { pop } ifelse
  613.     }
  614.    for exch pop .quit
  615.  } bind def
  616. /.errorhandler        % <command> <errorname> .errorhandler -
  617.   {        % Detect an internal 'stopped'.
  618.     1 .instopped { null eq { pop pop stop } if } if
  619.     $error /.inerror get 1 .instopped { pop } { pop true } ifelse
  620.      { .unstoppederrorhandler
  621.      } if    % detect error recursion
  622.     $error /globalmode .currentglobal false .setglobal put
  623.     $error /.inerror true put
  624.     $error /newerror true put
  625.     $error exch /errorname exch put
  626.     $error exch /command exch put
  627.     $error /recordstacks get $error /errorname get /VMerror ne and
  628.      {        % Attempt to store the stack contents atomically.
  629.        count array astore dup $error /ostack 4 -1 roll
  630.        countexecstack array execstack $error /estack 3 -1 roll
  631.        countdictstack array dictstack $error /dstack 3 -1 roll
  632.        put put put aload pop
  633.      }
  634.      { $error /dstack .undef
  635.        $error /estack .undef
  636.        $error /ostack .undef
  637.      }
  638.     ifelse
  639.     $error /position currentfile status
  640.      { currentfile { fileposition } .internalstopped { pop null } if
  641.      }
  642.      {        % If this was a scanner error, the file is no longer current,
  643.         % but the command holds the file, which may still be open.
  644.        $error /command get dup type /filetype eq
  645.         { { fileposition } .internalstopped { pop null } if }
  646.         { pop null }
  647.        ifelse
  648.      }
  649.     ifelse put
  650.         % During initialization, we don't reset the allocation
  651.         % mode on errors.
  652.     $error /globalmode get $error /.nosetlocal get and .setglobal
  653.     $error /.inerror false put
  654.     stop
  655.   } bind def
  656. % Define the standard handleerror.  We break out the printing procedure
  657. % (.printerror) so that it can be extended for binary output
  658. % if the Level 2 facilities are present.
  659.   /.printerror
  660.    { $error begin
  661.        /command load errorname SHORTERRORS
  662.     { (%%[ Error: ) print =only flush
  663.       (; OffendingCommand: ) print =only
  664.       currentdict /errorinfo .knownget
  665.        { (;\nErrorInfo:) print
  666.          dup type /arraytype eq
  667.           { { ( ) print =only } forall }
  668.           { ( ) print =only }
  669.          ifelse
  670.        } if
  671.           ( ]%%\n) print flush
  672.     }
  673.     { (Error: ) print ==only flush
  674.       ( in ) print ==only flush
  675.       currentdict /errorinfo .knownget
  676.        { (\nAdditional information: ) print ==only flush
  677.        } if
  678.       .printerror_long
  679.     }
  680.        ifelse
  681.        .clearerror
  682.      end
  683.      flush
  684.     } bind def     
  685.   /.printerror_long            % long error printout,
  686.                     % $error is on the dict stack
  687.    {    % Push the (anonymous) stack printing procedure.
  688.     %  <heading> <==flag> <override-name> <stackname> proc
  689.        {
  690.      currentdict exch .knownget    % stackname defined in $error?
  691.      {
  692.        4 1 roll            % stack: <stack> <head> <==flag> <over>
  693.        errordict exch .knownget    % overridename defined?
  694.        { 
  695.          exch pop exch pop exec    % call override with <stack>
  696.        }
  697.        { 
  698.          exch print exch        % print heading. stack <==flag> <stack>
  699.          1 index not { (\n) print } if
  700.          { 1 index { (\n    ) } { (   ) } ifelse print
  701.            dup type /dicttype eq
  702.            {
  703.          (--dict:) print
  704.          dup rcheck
  705.           { dup length =only (/) print maxlength =only }
  706.           { pop }
  707.          ifelse
  708.          (--) print
  709.            }
  710.            {
  711.          dup type /stringtype eq 2 index or
  712.          { ===only } { =only } ifelse
  713.            } ifelse
  714.          } forall
  715.          pop
  716.        }
  717.        ifelse            % overridden
  718.      }
  719.      { pop pop pop
  720.      }
  721.      ifelse                % stack known
  722.        }
  723.  
  724.        (\nOperand stack:) OSTACKPRINT /.printostack /ostack 4 index exec
  725.        (\nExecution stack:) ESTACKPRINT /.printestack /estack 4 index exec
  726.        (\nBacktrace:) true /.printbacktrace /backtrace 4 index exec
  727.        (\nDictionary stack:) false /.printdstack /dstack 4 index exec
  728.        (\n) print
  729.        pop    % printing procedure
  730.  
  731.        errorname /VMerror eq
  732.     { (VM status:) print mark vmstatus
  733.       counttomark { ( ) print counttomark -1 roll dup =only } repeat
  734.       cleartomark (\n) print
  735.     } if
  736.  
  737.        .languagelevel 2 ge
  738.     { (Current allocation mode is ) print
  739.       globalmode { (global\n) } { (local\n) } ifelse print
  740.     } if
  741.  
  742.        .oserrno dup 0 ne
  743.     { (Last OS error: ) print
  744.       errorname /VMerror ne
  745.        { dup .oserrorstring { = pop } { = } ifelse }
  746.        { = }
  747.       ifelse
  748.     }
  749.     { pop
  750.     }
  751.        ifelse
  752.  
  753.        position null ne
  754.     { (Current file position is ) print position = }
  755.        if
  756.  
  757.    } bind def
  758. % Define a procedure for clearing the error indication.
  759. /.clearerror
  760.  { $error /newerror false put
  761.    $error /errorname null put
  762.    $error /errorinfo .undef
  763.    0 .setoserrno
  764.  } bind def
  765.  
  766. % Define $error.  This must be in local VM.
  767. .currentglobal false .setglobal
  768. /$error 40 dict def        % newerror, errorname, command, errorinfo,
  769.                 % ostack, estack, dstack, recordstacks,
  770.                 % binary, globalmode,
  771.                 % .inerror, .nosetlocal, position,
  772.         % plus extra space for badly designed error handers.
  773. $error begin
  774.   /newerror false def
  775.   /recordstacks true def
  776.   /binary false def
  777.   /globalmode .currentglobal def
  778.   /.inerror false def
  779.   /.nosetlocal true def
  780.   /position null def
  781. end
  782. % Define errordict similarly.  It has one entry per error name,
  783. %   plus handleerror.
  784. /errordict ErrorNames length 1 add dict def
  785. .setglobal        % contents of errordict are global
  786. errordict begin
  787.   ErrorNames
  788.    { mark 1 index systemdict /.errorhandler get /exec load .packtomark cvx def
  789.    } forall
  790. % The handlers for interrupt and timeout are special; there is no
  791. % 'current object', so they push their own name.
  792.    { /interrupt /timeout }
  793.    { mark 1 index dup systemdict /.errorhandler get /exec load .packtomark cvx def
  794.    } forall
  795. /handleerror
  796.  { //systemdict /.printerror get exec
  797.  } bind def
  798. end
  799.  
  800. % Define the [write]==[only] procedures.
  801. /.dict 26 dict dup
  802. begin def
  803.   /.cvp {1 index exch .writecvs} bind def
  804.   /.nop {exch pop .p} bind def
  805.   /.p {1 index exch writestring} bind def
  806.   /.p1 {2 index exch writestring} bind def
  807.   /.p2 {3 index exch writestring} bind def
  808.   /.print
  809.     { dup type .dict exch .knownget
  810.        { dup type /stringtype eq { .nop } { exec } ifelse }
  811.        { (-) .p1 type .cvp (-) .p }
  812.       ifelse
  813.     } bind def
  814.   /.pstring
  815.     {  { dup dup 32 lt exch 127 ge or
  816.           { (\\) .p1 2 copy -6 bitshift 48 add write
  817.         2 copy -3 bitshift 7 and 48 add write
  818.         7 and 48 add
  819.           }
  820.           { dup dup -2 and 40 eq exch 92 eq or {(\\) .p1} if
  821.           }
  822.          ifelse 1 index exch write
  823.        }
  824.       forall
  825.     } bind def  
  826.   /booleantype /.cvp load def
  827.   /conditiontype (-condition-) def
  828.   /devicetype (-device-) def
  829.   /dicttype (-dict-) def
  830.   /filetype (-file-) def
  831.   /fonttype (-fontID-) def
  832.   /gstatetype (-gstate-) def
  833.   /integertype /.cvp load def
  834.   /locktype (-lock-) def
  835.   /marktype (-mark-) def
  836.   /nulltype (null) def
  837.   /realtype {1 index exch true .writecvp} bind def
  838.   /savetype (-save-) def
  839.   /nametype
  840.     {dup xcheck not {(/) .p1} if
  841.      1 index exch .writecvs} bind def
  842.   /arraytype
  843.     {dup rcheck
  844.       {() exch dup xcheck
  845.         {({) .p2
  846.          {exch .p1
  847.           1 index exch .print pop ( )} forall
  848.          (})}
  849.         {([) .p2
  850.          {exch .p1
  851.           1 index exch .print pop ( )} forall
  852.          (])}
  853.        ifelse exch pop .p}
  854.       {(-array-) .nop}
  855.      ifelse} bind def
  856.   /operatortype
  857.       {(--) .p1 .cvp (--) .p} bind def
  858.   /packedarraytype
  859.     { dup rcheck
  860.        { arraytype }
  861.        { (-packedarray-) .nop }
  862.       ifelse
  863.     } bind def
  864.   /stringtype
  865.     { dup rcheck
  866.        { (\() .p1 dup length 200 le
  867.           { .pstring }
  868.           { 0 200 getinterval .pstring (...) .p }
  869.          ifelse (\)) .p
  870.        }
  871.        { (-string-) .nop
  872.        }
  873.       ifelse
  874.     } bind def
  875. {//.dict begin .print pop end}
  876.   bind
  877. end
  878.  
  879. /write==only exch def
  880. /write== {1 index exch write==only (\n) writestring} bind def
  881. /==only { (%stdout) (w) file exch write==only } bind def
  882. /== {==only (\n) print} bind def
  883.  
  884. % Define [write]===[only], an extension that prints dictionaries
  885. % in readable form and doesn't truncate strings.
  886. /.dict /write==only load 0 get dup length dict .copydict dup
  887. begin def
  888.   /dicttype
  889.     { dup rcheck
  890.        { (<< ) .p1
  891.           { 2 index 3 -1 roll .print pop ( ) .p1
  892.         1 index exch .print pop ( ) .p
  893.           }
  894.          forall (>>) .p
  895.        }
  896.        { (-dict-) .nop
  897.        }
  898.       ifelse
  899.     } bind def
  900.   /stringtype
  901.     { dup rcheck
  902.        { (\() .p1 .pstring (\)) .p }
  903.        { (-string-) .nop }
  904.       ifelse
  905.     } bind def
  906.  
  907. {//.dict begin .print pop end}
  908.   bind
  909. end
  910.  
  911. /write===only exch def
  912. /write=== {1 index exch write===only (\n) writestring} bind def
  913. /===only { (%stdout) (w) file exch write===only } bind def
  914. /=== { ===only (\n) print } bind def
  915.  
  916. (END PROCS) VMDEBUG
  917.  
  918. % Define the font directory.
  919. /FontDirectory false .setglobal 100 dict true .setglobal def
  920.  
  921. % Define the encoding dictionary.
  922. /EncodingDirectory 10 dict def    % enough for Level 2 + PDF standard encodings
  923.  
  924. % Define .findencoding.  (This is redefined in Level 2.)
  925. /.findencoding
  926.  { //EncodingDirectory exch get exec
  927.  } bind def
  928. /.defineencoding
  929.  { //EncodingDirectory 3 1 roll put
  930.  } bind def
  931. % If we've got the composite font extensions, define findencoding.
  932. /rootfont where { pop /findencoding { .findencoding } odef } if
  933.  
  934. % Load StandardEncoding.
  935. %% Replace 1 (gs_std_e.ps)
  936. (gs_std_e.ps) dup runlibfile VMDEBUG
  937.  
  938. % Load ISOLatin1Encoding.
  939. %% Replace 1 (gs_iso_e.ps)
  940. (gs_iso_e.ps) dup runlibfile VMDEBUG
  941.  
  942. % Define stubs for the Symbol and Dingbats encodings.
  943. % Note that the first element of the procedure must be the file name,
  944. % since gs_lev2.ps extracts it to set up the Encoding resource category.
  945.  
  946.   /SymbolEncoding { /SymbolEncoding .findencoding } bind def
  947. %% Replace 3 (gs_sym_e.ps)
  948.   EncodingDirectory /SymbolEncoding
  949.    { (gs_sym_e.ps) //systemdict begin runlibfile SymbolEncoding end }
  950.   bind put
  951.  
  952.   /DingbatsEncoding { /DingbatsEncoding .findencoding } bind def
  953. %% Replace 3 (gs_dbt_e.ps)
  954.   EncodingDirectory /DingbatsEncoding
  955.    { (gs_dbt_e.ps) //systemdict begin runlibfile DingbatsEncoding end }
  956.   bind put
  957.  
  958. (END FONTDIR/ENCS) VMDEBUG
  959.  
  960. % Construct a dictionary of all available devices.
  961. % These are (read-only) device prototypes that can't be
  962. % installed or have their parameters changed.  For this reason,
  963. % the value in the dictionary is actually a 2-element writable array,
  964. % to allow us to create a default instance of the prototype on demand.
  965.  
  966.     % Loop until the .getdevice gets a rangecheck.
  967. errordict /rangecheck 2 copy get
  968. errordict /rangecheck { pop stop } put    % pop the command
  969.   0 { {dup .getdevice exch 1 add} loop} .internalstopped pop
  970.   1 add dict  /devicedict 1 index def
  971.   begin            % 2nd copy of count is on stack
  972.    { dup .devicename exch
  973.      dup wcheck { dup } { null } ifelse 2 array astore def
  974.    } repeat
  975.   end
  976. put        % errordict /rangecheck
  977. .clearerror
  978. /devicenames devicedict { pop } forall devicedict length packedarray def
  979.  
  980. % Determine the default device.
  981. /defaultdevice DISPLAYING
  982.  { systemdict /DEVICE .knownget
  983.     { devicedict 1 index known not
  984.        { (Unknown device: ) print =
  985.      flush /defaultdevice cvx 1 .quit
  986.        }
  987.       if
  988.     }
  989.     { 0 .getdevice .devicename
  990.     }
  991.    ifelse
  992.  }
  993.  { /nullpage
  994.  }
  995. ifelse
  996. /.defaultdevicename 1 index def
  997. finddevice    % make a copy
  998. def
  999. devicedict /Default devicedict .defaultdevicename get put
  1000.  
  1001. (END DEVS) VMDEBUG
  1002.  
  1003. % Define statusdict, for the benefit of programs
  1004. % that think they are running on a LaserWriter or similar printer.
  1005. %% Replace 1 (gs_statd.ps)
  1006. (gs_statd.ps) runlibfile
  1007.  
  1008. (END STATD) VMDEBUG
  1009.  
  1010. % Load the standard font environment.
  1011. %% Replace 1 (gs_fonts.ps)
  1012. (gs_fonts.ps) runlibfile
  1013.  
  1014. (END GS_FONTS) VMDEBUG
  1015.  
  1016. % Load the initialization files for optional features.
  1017. %% Replace 4 INITFILES
  1018. systemdict /INITFILES known
  1019.  { INITFILES { dup runlibfile VMDEBUG } forall
  1020.  }
  1021. if
  1022.  
  1023. % If Level 2 functionality is implemented, enable it now.
  1024. /.setlanguagelevel where
  1025.  { pop 2 .setlanguagelevel
  1026.     % If the resource machinery is loaded, fix up some things now.
  1027.    /.fixresources where { pop .fixresources } if
  1028.  } if
  1029.  
  1030. (END INITFILES) VMDEBUG
  1031.  
  1032. % Create a null font.  This is the initial font.
  1033. 8 dict dup begin
  1034.   /FontMatrix [ 1 0 0 1 0 0 ] readonly def
  1035.   /FontType 3 def
  1036.   /FontName () def
  1037.   /Encoding StandardEncoding def
  1038.   /FontBBox { 0 0 0 0 } readonly def % executable is bogus, but customary ...
  1039.   /BuildChar { pop pop 0 0 setcharwidth } bind def
  1040.   /PaintType 0 def        % shouldn't be needed!
  1041. end
  1042. /NullFont exch definefont setfont
  1043.  
  1044. % Define NullFont as the font.
  1045. /NullFont currentfont def
  1046.  
  1047. % Load initial fonts from FONTPATH directories, Fontmap file,
  1048. % and/or .getccfont as appropriate.
  1049. .loadinitialfonts
  1050.  
  1051. % Remove NullFont from FontDirectory, so it can't be accessed by mistake.
  1052. FontDirectory /NullFont .undef
  1053.  
  1054. (END FONTS) VMDEBUG
  1055.  
  1056. % Restore the real definition of runlibfile.
  1057. /runlibfile /.runlibfile load def
  1058. currentdict /.runlibfile .undef
  1059.  
  1060. % Bind all the operators defined as procedures.
  1061. /.bindoperators        % binds operators in currentdict
  1062.  { % Temporarily disable the typecheck error.
  1063.    errordict /typecheck 2 copy get
  1064.    errordict /typecheck { pop } put    % pop the command
  1065.    currentdict
  1066.     { dup type /operatortype eq
  1067.        { % This might be a real operator, so bind might cause a typecheck,
  1068.      % but we've made the error a no-op temporarily.
  1069.      .bind        % do a real bind even if NOBIND is set
  1070.        }
  1071.       if pop pop
  1072.     } forall
  1073.    put
  1074.  } def
  1075. NOBIND DELAYBIND or not { .bindoperators } if
  1076.  
  1077. % Establish a default environment.
  1078.  
  1079. defaultdevice
  1080. DISPLAYING not { setdevice (%END DISPLAYING) .skipeof } if
  1081. systemdict /DEVICEWIDTH known
  1082. systemdict /DEVICEHEIGHT known or
  1083. systemdict /DEVICEWIDTHPOINTS known or
  1084. systemdict /DEVICEHEIGHTPOINTS known or
  1085. systemdict /DEVICEXRESOLUTION known or
  1086. systemdict /DEVICEYRESOLUTION known or
  1087. systemdict /PAPERSIZE known or
  1088. not { (%END DEVICE) .skipeof } if
  1089. % Let DEVICE{WIDTH,HEIGHT}[POINTS] override PAPERSIZE.
  1090. systemdict /PAPERSIZE known
  1091. systemdict /DEVICEWIDTH known not and
  1092. systemdict /DEVICEHEIGHT known not and
  1093. systemdict /DEVICEWIDTHPOINTS known not and
  1094. systemdict /DEVICEHEIGHTPOINTS known not and
  1095.  {    % Convert the paper size to device dimensions.
  1096.    true statusdict /.pagetypenames get
  1097.     { PAPERSIZE eq
  1098.        { PAPERSIZE load
  1099.          dup 0 get /DEVICEWIDTHPOINTS exch def
  1100.          1 get /DEVICEHEIGHTPOINTS exch def
  1101.          pop false exit
  1102.        }
  1103.       if
  1104.     }
  1105.    forall
  1106.     { (Unknown paper size: ) print PAPERSIZE ==only (.\n) print
  1107.     }
  1108.    if
  1109.  }
  1110. if
  1111. % Adjust the device parameters per the command line.
  1112. % It is possible to specify resolution, pixel size, and page size;
  1113. % since any two of these determine the third, conflicts are possible.
  1114. % We simply pass them to .setdeviceparams and let it sort things out.
  1115.    mark /HWResolution null /HWSize null /PageSize null .dicttomark
  1116.    .getdeviceparams .dicttomark begin
  1117.    mark
  1118.     % Check for resolution.
  1119.    /DEVICEXRESOLUTION where dup
  1120.     { exch pop HWResolution 0 DEVICEXRESOLUTION put }
  1121.    if
  1122.    /DEVICEYRESOLUTION where dup
  1123.     { exch pop HWResolution 1 DEVICEYRESOLUTION put }
  1124.    if
  1125.    or { /HWResolution HWResolution } if
  1126.     % Check for device sizes specified in pixels.
  1127.    /DEVICEWIDTH where dup
  1128.     { exch pop HWSize 0 DEVICEWIDTH put }
  1129.    if
  1130.    /DEVICEHEIGHT where dup
  1131.     { exch pop HWSize 1 DEVICEHEIGHT put }
  1132.    if
  1133.    or { /HWSize HWSize } if
  1134.     % Check for device sizes specified in points.
  1135.    /DEVICEWIDTHPOINTS where dup
  1136.     { exch pop PageSize 0 DEVICEWIDTHPOINTS put }
  1137.    if
  1138.    /DEVICEHEIGHTPOINTS where dup
  1139.     { exch pop PageSize 1 DEVICEHEIGHTPOINTS put }
  1140.    if
  1141.    or { /PageSize PageSize } if
  1142.     % Check whether any parameters were set.
  1143.    dup mark eq { pop } { defaultdevice putdeviceprops } ifelse
  1144.    end
  1145. %END DEVICE
  1146. % Set any device properties defined on the command line.
  1147. % If BufferSpace is defined but not MaxBitmap, set MaxBitmap to BufferSpace.
  1148. systemdict /BufferSpace known
  1149. systemdict /MaxBitmap known not and
  1150.  { systemdict /MaxBitmap BufferSpace put
  1151.  } if
  1152. dup getdeviceprops
  1153. counttomark 2 idiv
  1154.  { systemdict 2 index known
  1155.     { pop dup load counttomark 2 roll }
  1156.     { pop pop }
  1157.    ifelse
  1158.  } repeat
  1159. counttomark dup 0 ne
  1160.  { 2 add -1 roll putdeviceprops }
  1161.  { pop pop }
  1162. ifelse
  1163. setdevice        % does an erasepage
  1164. % If the media size is fixed, update the current page device dictionary.
  1165. FIXEDMEDIA
  1166. dup { pop systemdict /.currentpagedevice known } if
  1167. dup { pop .currentpagedevice exch pop } if
  1168. not { (%END MEDIA) .skipeof } if
  1169. currentpagedevice dup length dict .copydict
  1170. dup /Policies
  1171.     % Stack: <pagedevice> <pagedevice> /Policies
  1172. 1 index /InputAttributes
  1173. 2 copy get dup length dict .copydict
  1174.     % Stack: <pagedevice> <pagedevice> /Policies <pagedevice>
  1175.     %   /InputAttributes <inputattrs'>
  1176. dup 0 2 copy get dup length dict .copydict
  1177.     % Stack: <pagedevice> <pagedevice> /Policies <pagedevice>
  1178.     %   /InputAttributes <inputattrs'> <inputattrs'> 0 <attrs0'>
  1179. dup /PageSize 7 index /PageSize get
  1180. put                % PageSize in 0
  1181. put                % 0 in InputAttributes
  1182. put                % InputAttributes in pagedevice
  1183. % Also change the page size policy so we don't get an error.
  1184.     % Stack: <pagedevice> <pagedevice> /Policies
  1185. 2 copy get dup length dict .copydict
  1186.     % Stack: <pagedevice> <pagedevice> /Policies <policies'>
  1187. dup /PageSize 7 put        % PageSize in Policies
  1188. put                % Policies in pagedevice
  1189. .setpagedevice
  1190. %END MEDIA
  1191. %END DISPLAYING
  1192.  
  1193. (END DEVICE) VMDEBUG
  1194.  
  1195. % Establish a default upper limit in the character cache,
  1196. % namely, enough room for a 18-point character at the resolution
  1197. % of the default device, or for a character consuming 1% of the
  1198. % maximum cache size, whichever is larger.
  1199. mark
  1200.     % Compute limit based on character size.
  1201.   18 dup dtransform
  1202.   exch abs cvi 31 add 32 idiv 4 mul    % X raster
  1203.   exch abs cvi mul        % Y
  1204.     % Compute limit based on allocated space.
  1205.   cachestatus pop pop pop pop pop exch pop 0.01 mul cvi
  1206.   .max dup 10 idiv exch
  1207. setcacheparams
  1208. % Conditionally disable the character cache.
  1209. NOCACHE { 0 setcachelimit } if
  1210.  
  1211. (END CONFIG) VMDEBUG
  1212.  
  1213. % Establish an appropriate halftone screen and BG/UCR functions.
  1214. % We make this a procedure so we can call it again when switching devices.
  1215.  
  1216. % Use an ordered dither for low-resolution devices.
  1217. /.setloresscreen    % <dpi> .setloresscreen -
  1218.  {    % The following 'ordered dither' spot function was contributed by
  1219.     % Gregg Townsend.  Thanks, Gregg!
  1220.    16.001 div 0            % not 16: avoids rounding problems
  1221.     { 1 add 7.9999 mul cvi exch 1 add 7.9999 mul cvi 16 mul add <
  1222.     0E 8E 2E AE 06 86 26 A6 0C 8C 2C AC 04 84 24 A4
  1223.     CE 4E EE 6E C6 46 E6 66 CC 4C EC 6C C4 44 E4 64
  1224.     3E BE 1E 9E 36 B6 16 96 3C BC 1C 9C 34 B4 14 94
  1225.     FE 7E DE 5E F6 76 D6 56 FC 7C DC 5C F4 74 D4 54
  1226.     01 81 21 A1 09 89 29 A9 03 83 23 A3 0B 8B 2B AB
  1227.     C1 41 E1 61 C9 49 E9 69 C3 43 E3 63 CB 4B EB 6B
  1228.     31 B1 11 91 39 B9 19 99 33 B3 13 93 3B BB 1B 9B
  1229.     F1 71 D1 51 F9 79 D9 59 F3 73 D3 53 FB 7B DB 5B
  1230.     0D 8D 2D AD 05 85 25 A5 0F 8F 2F AF 07 87 27 A7
  1231.     CD 4D ED 6D C5 45 E5 65 CF 4F EF 6F C7 47 E7 67
  1232.     3D BD 1D 9D 35 B5 15 95 3F BF 1F 9F 37 B7 17 97
  1233.     FD 7D DD 5D F5 75 D5 55 FF 7F DF 5F F7 77 D7 57
  1234.     02 82 22 A2 0A 8A 2A AA 00 80 20 A0 08 88 28 A8
  1235.     C2 42 E2 62 CA 4A EA 6A C0 40 E0 60 C8 48 E8 68
  1236.     32 B2 12 92 3A BA 1A 9A 30 B0 10 90 38 B8 18 98
  1237.     F2 72 D2 52 FA 7A DA 5A F0 70 D0 50 F8 78 D8 58
  1238.      > exch get 256 div
  1239.     }
  1240.    bind
  1241.         % Use correct, per-plane screens for CMYK devices only.
  1242.    //systemdict /setcolorscreen known processcolors 4 eq and
  1243.     { 3 copy 6 copy setcolorscreen }
  1244.     { setscreen }
  1245.    ifelse
  1246.    0 array cvx settransfer    % Genoa CET won't accept a packed array!
  1247.    /setstrokeadjust where { pop true setstrokeadjust } if
  1248.  } bind def
  1249. % Use a 45-degree spot screen for high-resolution devices.
  1250. /.sethiresscreen    % <dpi> .sethiresscreen -
  1251.  {    % According to information published by Hewlett-Packard,
  1252.     % they use a 60 line screen on 300 DPI printers and
  1253.     % an 85 line screen on 600 DPI printers.
  1254.     % However, we use a 106 line screen, which produces smoother-
  1255.     % looking shades but fewer of them (32 vs. 50).
  1256.     % 46 was suggested as a good frequency value for printers
  1257.     % between 200 and 400 DPI, so we use it for lower resolutions.
  1258.     % Imagesetters need even higher frequency screens.
  1259.    //systemdict /DITHERPPI known
  1260.     { DITHERPPI
  1261.     }
  1262.     { dup cvi 100 idiv 15 .min
  1263.        {null 46 46 60 60 60 106 106 106 106 133 133 133 133 133 150}
  1264.       exch get
  1265.      }
  1266.    ifelse
  1267.    1 index 4.01 div .min    % at least a 4x4 cell
  1268.    45
  1269.     % The following screen algorithm is used by permission of the author.
  1270.     { 1 add 180 mul cos 1 0.08 add mul exch 2 add 180 mul cos 
  1271.       1 0.08 sub mul add 2 div % (C) 1989 Berthold K.P. Horn
  1272.     }
  1273.    bind
  1274.     % Determine whether we have lots of process colors.
  1275.     % If so, don't bother with color screening or gamma correction.
  1276.     % Also don't do gamma correction on very high-resolution devices.
  1277.     % (This should depend on dot gain, not resolution, but we don't
  1278.     % currently have a way to determine this.)
  1279.    currentdevice mark
  1280.      /RedValues 0 /GreenValues 0 /BlueValues 0 /GrayValues 0
  1281.    .dicttomark .getdeviceparams
  1282.    counttomark 2 idiv 1 sub { exch pop min } repeat
  1283.    exch pop exch pop 32 lt 4 index 800 lt and 5 1 roll
  1284.     % Stack: doscreen dpi freq angle proc
  1285.     % Ghostscript currently doesn't use correct, per-plane halftones
  1286.     % unless setcolorscreen has been executed.  Since these are
  1287.     % computationally much more expensive than binary halftones,
  1288.     % we check to make sure they are really warranted, i.e., we have
  1289.     % a high-resolution CMYK device (i.e., not a display) with
  1290.     % fewer than 5 bits per plane (i.e., not a true-color device).
  1291.    4 -1 roll 150 ge
  1292.     { /setcolorscreen where
  1293.        { pop //systemdict /COLORSCREEN known
  1294.       { COLORSCREEN }
  1295.       { 3 index }
  1296.      ifelse
  1297.      dup false ne
  1298.       { 4 1 roll 3 copy 6 copy 13 -1 roll
  1299.     % For really high-quality screening on printers, we need to
  1300.     % give each plane its own screen angle.  Unfortunately,
  1301.     % this currently has very large space and time costs.
  1302.         true eq        % true => different angles,
  1303.                 % 0 => same angles
  1304.          { { 45 90 15 75 } { 3 1 roll exch pop 12 3 roll } forall
  1305.          }
  1306.         if setcolorscreen
  1307.       }
  1308.       { pop setscreen    % false => single binary screen
  1309.       }
  1310.      ifelse
  1311.        }
  1312.        { setscreen        % setcolorscreen not known
  1313.        }
  1314.       ifelse
  1315.     }
  1316.     { setscreen            % not high resolution
  1317.     }
  1318.    ifelse
  1319.             % Stack: doscreen
  1320.     {    % Set the transfer function to lighten up the grays.
  1321.     % We correct at the high end so that very light grays
  1322.     % don't disappear completely if they darken <1 screen pixel.
  1323.     % Parameter values closer to 1 are better for devices with
  1324.     % less dot spreading; lower values are better with more spreading.
  1325.     % The value 0.8 is a compromise that will probably please no one!
  1326.     %
  1327.     % Because of a bug in FrameMaker, we have to accept operands
  1328.     % outside the valid range of [0..1].
  1329.       { dup dup 0.0 gt exch 1.0 lt and
  1330.      { 0.8 exp dup dup 0.9375 gt exch 0.999 lt and    % > 15/16
  1331.         { .currentscreenlevels 1 sub    % tweak to avoid boundary
  1332.           1 exch div 1 exch sub .min
  1333.         }
  1334.        if
  1335.      }
  1336.     if
  1337.       }
  1338.     }
  1339.     {    % Set the transfer function to the identity.
  1340.       0 array cvx        % Genoa CET won't accept a packed array!
  1341.     }
  1342.    ifelse settransfer
  1343.    /setstrokeadjust where { pop false setstrokeadjust } if
  1344.     % Increase fill adjustment so that we effectively use Adobe's
  1345.     % any-part-of-pixel rule.
  1346.    0.5 .setfilladjust
  1347.  } bind def
  1348. % Set the default screen and BG/UCR based on the device resolution and
  1349. % process color capability.
  1350. /.setdefaultbgucr systemdict /setblackgeneration known { {
  1351.   processcolors 1 eq { { } } { { pop 0.0 } } ifelse
  1352.   dup setblackgeneration setundercolorremoval
  1353. } } { {
  1354. } } ifelse bind def
  1355. /.setdefaultscreen
  1356.  {    % Compute min(|dpi x|,|dpi y|) as the definition of the resolution.
  1357.    72 72 matrix defaultmatrix dtransform abs exch abs .min
  1358.    dup 150 lt //systemdict /DITHERPPI known not and
  1359.     { .setloresscreen } { .sethiresscreen }
  1360.    ifelse .setdefaultbgucr
  1361.  } bind def
  1362. .setdefaultscreen
  1363. initgraphics
  1364.  
  1365. % The interpreter relies on there being at least 2 entries
  1366. % on the graphics stack.  Establish the second one now.
  1367. gsave
  1368.  
  1369. % Define some control sequences as no-ops.
  1370. % This is a hack to get around problems
  1371. % in some common PostScript-generating applications.
  1372. <04> cvn { } def        % Apple job separator
  1373. <0404> cvn { } def        % two of the same
  1374. <1b> cvn { } def        % MS Windows LaserJet 4 prologue
  1375.                 % (UEL, ^[%-12345X)
  1376. <041b> cvn { } def        % MS Windows LaserJet 4 epilogue (^D + UEL)
  1377. (\001M) cvn            % TBCP initiator
  1378.  { currentfile /TBCPDecode filter cvx exec
  1379.  } bind def
  1380. /@PJL                % H-P job control
  1381.  { currentfile //=string readline { pop } if
  1382.  } bind def
  1383.  
  1384. % If we want a "safer" system, disable some obvious ways to cause havoc.
  1385. SAFER not { (%END SAFER) .skipeof } if
  1386. /file
  1387.  { dup (r) eq 2 index (%pipe*) .stringmatch not and
  1388.    2 index (%std*) .stringmatch or
  1389.     { file }
  1390.     { /invalidfileaccess signalerror }
  1391.    ifelse
  1392.  } .bind odef
  1393. /renamefile { /invalidfileaccess signalerror } odef
  1394. /deletefile { /invalidfileaccess signalerror } odef
  1395. /putdeviceprops
  1396.  { counttomark
  1397.    dup 2 mod 0 eq { pop /rangecheck signalerror } if
  1398.    3 2 3 2 roll
  1399.     { dup index /OutputFile eq  
  1400.        { -2 roll 
  1401.          dup () ne { /putdeviceprops load /invalidfileaccess signalerror } if
  1402.          3 -1 roll
  1403.        }
  1404.        { pop
  1405.        }
  1406.       ifelse
  1407.     } for
  1408.    putdeviceprops
  1409.  } .bind odef
  1410.  
  1411. %END SAFER
  1412.  
  1413. % If we delayed binding, make it possible to do it later.
  1414. /.bindnow
  1415.  { //systemdict begin .bindoperators end
  1416.    % Temporarily disable the typecheck error.
  1417.    errordict /typecheck 2 copy get
  1418.    errordict /typecheck { pop } put    % pop the command
  1419.    0 1 .delaycount 1 sub { .delaybind exch get .bind pop } for
  1420.    userdict /.delaybind .undef        % reclaim the space
  1421.    userdict /.delaycount .undef
  1422.    put
  1423.  } .bind def
  1424.  
  1425. % Turn off array packing, since some PostScript code assumes that
  1426. % procedures are writable.
  1427. false setpacking
  1428.  
  1429. % Close up systemdict.
  1430. currentdict /.forceput .undef        % remove temptation
  1431. currentdict /filterdict .undef        % bound in where needed
  1432. end
  1433. WRITESYSTEMDICT not { systemdict readonly pop } if
  1434.  
  1435. (END INIT) VMDEBUG
  1436.  
  1437. % Since some badly-behaved files include extremely long procedures,
  1438. % or construct huge arrays on the operand stack, increase the operand
  1439. % stack size here.
  1440. /setuserparams where
  1441.  { pop mark /MaxOpStack 20000 .dicttomark setuserparams
  1442.  } if
  1443.  
  1444. % Establish local VM as the default.
  1445. false /setglobal where { pop setglobal } { .setglobal } ifelse
  1446. $error /.nosetlocal false put
  1447.  
  1448. % Clean up VM, and enable GC.
  1449. /vmreclaim where
  1450.  { pop NOGC not { 2 vmreclaim 0 vmreclaim } if
  1451.  } if
  1452.  
  1453. (END GC) VMDEBUG
  1454.  
  1455. % The interpreter will run the initial procedure (start).
  1456.